home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 121_01.zip / DATE.H < prev    next >
Text File  |  1993-06-01  |  640b  |  33 lines

  1. /*
  2.  * date.h - system defines for the computime clock/calendar board
  3.  *
  4.  * version 1.0    - September 1985
  5.  *    add version number
  6.  *    change header file name to "date.h"
  7.  */
  8.  
  9. struct time {
  10.     char seconds ;
  11.     char minutes ;
  12.     char hours ;
  13.     } ;
  14.  
  15. struct date {
  16.     char weekday ;
  17.     char day ;
  18.     char month ;
  19.     char year ;
  20.     } ;
  21.  
  22. #define CLBASE    0x80
  23. #define CLDATA    CLBASE+1
  24. #define CLADDR    CLBASE+2
  25. #define CLOFF    32
  26. #define CLMASK    0x0F
  27. #define CLOMASK    0x03
  28. #define CLAMPM    0x04
  29. #define CL24HR    0x08
  30. #define CLHOLD    16
  31. #define CLREL    0
  32. #define CLCHAR    47
  33.